home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2000 September / maximum-cd-2000-09.iso / Vampire the Masquerade / vampire_demo.exe / Codex.nob / EffectDiscHeal.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-06-22  |  724 b   |  8 lines

  1. public class EffectDiscHeal extends Codex {
  2.    public void effectstarted(int actorGuid, int effectGuid, int creatorGuid, int duration) {
  3.       CodexActor _Creator = new CodexActor(creatorGuid);
  4.       ((CodexThing)_Creator).SetShell("redCloudShell_b", 20480, 0.0F, 1.0F, 1.0F, 1.0F);
  5.       ((CodexThing)_Creator).SpawnThing("blueMagic");
  6.    }
  7. }
  8.